home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Format 1995 June
/
MacFormat 25.iso
/
Shareware City
/
Developers
/
OutOfPhase1.1 Source
/
OutOfPhase Folder
/
MiscInfo.h
< prev
next >
Wrap
Text File
|
1995-01-11
|
1KB
|
38 lines
/* MiscInfo.h for Out Of Phase */
#ifndef Included_MiscInfo_h
#define Included_MiscInfo_h
/********************************************************************************/
/* control flags */
/* to enable one of the following debugging features, but a 1 in the definition. */
/* to disable, put a 0. Do NOT use macros True and False since they may not be */
/* defined when this file is read. */
#define DEBUG (0) /* debugging macros */
#define ALWAYSRESUME (0) /* resume button availability */
#define DEBUGGER_PRESENT (0) /* break points in PRERR */
#define AUDIT (0) /* audit file generation */
#define AUDITFLUSHING (0) /* flush AUDIT file after each write (very slow) */
#define MEMDEBUG (0) /* pointer allocation checking */
/********************************************************************************/
/* application information */
#define VersionString "1.1"
#define ApplicationCreator ('\xba'*(1L<<24) + 'S'*(1L<<16) + 'y'*(1L<<8) + 'n')
#define ApplicationFileType ('\xba'*(1L<<24) + 'S'*(1L<<16) + 'y'*(1L<<8) + 'd')
/********************************************************************************/
/* audit file creator */
#define AUDITCREATOR ('KAHL') /* THINK C creator */
/********************************************************************************/
#endif